html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Root */
:root {
  --espresso: #734212;
  --ceramic: #f4f3f0;
  --latte: #b4863f;
  --dark-roast: #512c0a;
  --warm-white: #faf9f6;
  --text-muted: #8a6648;
  --border: rgba(115, 66, 18, 0.14);
  --font-display: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;
  --shadow-card: 0 4px 24px rgba(81, 44, 10, 0.09);
  --transition: 0.25s ease;
  --nav-h: 62px;
  --shadow-hover: 0 10px 36px rgba(81, 44, 10, 0.16);
}
/* Global Styles */
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark-roast);
  overflow-x: hidden;
  line-height: 1.6;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ceramic);
  border-bottom: 1px solid var(--border);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: var(--nav-h);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark-roast);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-roast);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ceramic);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-roast);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-left: 3px solid transparent;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--espresso);
  border-left-color: var(--latte);
  background: rgba(180, 134, 63, 0.06);
}

.cart-icon {
  font-size: 1.1rem;
  color: var(--dark-roast);
}

/* Accent Strip */
.accent-strip {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--dark-roast),
    var(--espresso),
    var(--latte),
    var(--espresso),
    var(--dark-roast)
  );
}

/* Page Banner */
.page-banner {
  background: var(--ceramic);
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  animation: fadeDown 0.7s ease both;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--latte), transparent);
}

.banner-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 0.8rem;
}

.banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  color: var(--dark-roast);
  margin-bottom: 1rem;
}

.banner-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Contact Wrapper */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
}

.info-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dark-roast);
  margin-bottom: 0.5rem;
}

.info-divider {
  width: 48px;
  height: 3px;
  background: var(--latte);
  margin-bottom: 1.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ceramic);
  border: 1.5px solid rgba(180, 134, 63, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--latte);
  flex-shrink: 0;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.info-item:hover .info-icon {
  background: var(--latte);
  border-color: var(--latte);
  color: #fff;
}

.info-text-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 0.3rem;
}

.info-text-value {
  font-size: 0.95rem;
  color: var(--dark-roast);
  line-height: 1.65;
  font-weight: 400;
}

/* Table */

.hours-table {
  width: 100%;
  margin-top: 0.3rem;
}

.hours-table td {
  font-size: 0.88rem;
  color: var(--dark-roast);
  padding: 0.22rem 0;
  line-height: 1.6;
}

.hours-table td:first-child {
  font-weight: 700;
  padding-right: 1.25rem;
  color: var(--espresso);
  width: 90px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(180, 134, 63, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--latte);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--latte);
  border-color: var(--latte);
  color: #fff;
}

/* Contact Form */
.contact-form-wrap {
  padding: 2rem 1.5rem;
  border-bottom: 4px solid var(--latte);
  box-shadow: var(--shadow-card);
  background: var(--ceramic);
}

.form-heading {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dark-roast);
  margin-bottom: 0.5rem;
}

.form-divider {
  width: 48px;
  height: 3px;
  background: var(--latte);
  margin-bottom: 1.25rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 700;
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(115, 66, 18, 0.2);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-roast);
  outline: none;
  appearance: none;
  width: 100%;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(180, 134, 63, 0.12);
  border-color: var(--latte);
}

.form-input::placeholder,
.form-textarea::placeholder {
  font-weight: 300;
  color: #b8a090;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
/* Custom dropdown */
.form-select {
  padding-right: 2.5rem;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--espresso);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--transition),
    transform 0.15s;
  margin-top: 1.5rem;
  font-weight: 700;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:hover {
  background: var(--dark-roast);
  transform: translateY(-1px);
}

/* Info Strip */
.info-strip {
  background: var(--dark-roast);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  width: 100%;
  justify-content: center;
}

.strip-icon {
  font-size: 1.2rem;
  color: var(--latte);
}

.strip-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(180, 134, 63, 0.7);
  margin-bottom: 0.2rem;
}

.strip-value {
  font-size: 0.88rem;
  color: var(--ceramic);
  font-weight: 300;
}

/* Map */
.map-section {
  background: var(--ceramic);
  padding: 3rem 1.25rem;
  text-align: center;
  animation: fadeUp 0.9s ease 0.2s both;
}

.map-section-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.7rem;
  color: var(--latte);
}

.map-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2rem);
  color: var(--dark-roast);
  margin-bottom: 0.6rem;
}

.map-section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(81, 44, 10, 0.18);
  border-bottom: 4px solid var(--latte);
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  filter: sepia(20%) saturate(90%);
}

.map-overlay-card {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 190px;
  text-align: left;
  border-left: 4px solid var(--latte);
}

.map-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dark-roast);
  margin-bottom: 0.35rem;
}

.map-card-addr {
  font-size: 0.82rem;
  color: #7a5c3a;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.map-card-link {
  font-size: 0.78rem;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1.5px solid var(--latte);
  padding-bottom: 1px;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.map-card-link:hover {
  color: var(--dark-roast);
}

footer {
  background: #2a1505;
  color: #c4a882;
  padding: 2.5rem 1.25rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ceramic);
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #9a7a58;
  font-weight: 300;
  margin-bottom: 1rem;
}

.footer-heading {
  color: var(--latte);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.83rem;
  color: #9a7a58;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--ceramic);
}

.footer-contact p {
  font-size: 0.83rem;
  color: #9a7a58;
  line-height: 1.8;
  font-weight: 300;
}

.footer-newsletter-sub {
  font-size: 0.82rem;
  color: #9a7a58;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ceramic);
  font-family: var(--font-body);
  font-size: 0.82rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: #6a5040;
}

.newsletter-btn {
  padding: 0.6rem 1rem;
  background: var(--latte);
  border: none;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--transition);
}

.newsletter-btn:hover {
  background: var(--espresso);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.8rem;
  list-style: none;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  list-style: none;
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(180, 134, 63, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--latte);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social-icon:hover {
  background: var(--latte);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: #6a5040;
}

/* Tablet */
@media screen and (min-width: 601px) {
  /* Nav */
  .primary-nav {
    padding: 0 2rem;
  }
  /* Form Row */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }

  .strip-item {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .strip-item:nth-child(even) {
    border-right: none;
  }

  .strip-item:nth-child(-n + 2) {
    border-bottom: none;
  }

  .map-container iframe {
    height: 400px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .page-banner {
    padding: 3.5rem 2rem 3rem;
  }

  .contact-wrapper {
    padding: 3.5rem 2rem 4.5rem;
  }

  .map-section {
    padding: 3.5rem 2rem;
  }

  footer {
    padding: 3rem 2rem;
  }

  .contact-form-wrap {
    padding: 2.5rem 2rem;
  }
}
/* Desktop Screen Media Query */
@media screen and (min-width: 901px) {
  .primary-nav {
    padding: 0 3rem;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-roast);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--transition);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--espresso);
  }

  .nav-links a.active {
    border-bottom: 2px solid var(--latte);
    padding-bottom: 2px;
  }

  .hamburger {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .page-banner {
    padding: 4rem 2rem 3.5rem;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 4rem 2rem 5rem;
  }

  .contact-form-wrap {
    padding: 2.8rem;
  }

  .strip-item {
    width: auto;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
  }

  .strip-item:last-child {
    border-right: none;
  }

  .map-container iframe {
    height: 460px;
  }

  .map-section {
    padding: 4rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
  }

  footer {
    padding: 3rem 4rem;
  }
}
