:root{
  --bg:#FFFFFF;
  --ink:#2b2a27;
  --accent:#c6a27e; /* warm latte */
  --accent-deep:#9a7b58;
  --card:#ffffff;
  --muted:#6d6a64;
  --espresso:#7d4011;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";}
a{color:var(--accent-deep);text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:1000px;margin:0 auto;padding:24px}
@media (max-width: 768px) {
  .wrap { padding: 16px; }
}

header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 0}
.brand{display:flex;align-items:center;gap:12px}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px; /* adjust to your navbar height */
}

/* Make all images fluid on mobile */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*
.logo{
  width:40px;height:40px;border-radius:12px;background:conic-gradient(from 180deg at 50% 50%, #322e2b, #c6a27e 60%, #322e2b);
  display:grid;place-items:center;box-shadow:0 6px 20px rgba(0,0,0,.08);
}
*/

.logo svg{width:22px;height:22px;fill:#fff;opacity:.95}


.brand .name{font-weight:700;letter-spacing:.4px}
.badge{font-size:12px;background:var(--accent);color:#fff;padding:6px 10px;border-radius:999px;box-shadow:0 6px 20px rgba(0,0,0,.08)}
.card{
  background:var(--card);border-radius:20px;padding:28px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);border:1px solid #eee;
}

.hero{display:grid;grid-template-columns:1.1fr .9fr;gap:24px;align-items:center}
.hero h1{font-size:clamp(28px,3.6vw,44px);line-height:1.05;margin:0 0 10px}
.hero p{font-size:clamp(16px,2.2vw,19px);color:var(--muted);margin:0 0 18px}


.cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 16px;border-radius:12px;border:1px solid #e7e3dd;background:#fff;color:var(--ink);font-weight:600;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.btn.primary{background:var(--espresso);color:var(--bg);border-color:var(--bg)}
/* Flat hero logo container */
.visual {
  display: grid;
  place-items: center;
  background: none;     /* no gradient panel */
  border-radius: 0;     /* no rounded corners */
  overflow: visible;    /* let logo show naturally */
  min-height: auto;     /* height adjusts to SVG */
  position: relative;   /* keep flexibility if you want steam/effects */
}

.steam{position:absolute;bottom:30%;left:50%;transform:translateX(-50%);display:flex;gap:12px;opacity:.7}
.steam span{
  display:block;width:6px;height:80px;background:linear-gradient(#fff, transparent);
  border-radius:999px;filter:blur(2px);animation:rise 4s infinite ease-in;
}
.steam span:nth-child(2){animation-delay:.6s}
.steam span:nth-child(3){animation-delay:1.2s}
@keyframes rise{0%{transform:translateY(20px) scale(.9)} 100%{transform:translateY(-80px) scale(1.1);opacity:0}}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:22px}
.section{margin-top:28px}
.muted{color:var(--muted)}
.map{border:0;border-radius:16px;min-height:260px;width:100%}
.pill{display:inline-block;padding:6px 10px;border-radius:999px;background:#f3eee6;color:#6b5f52;font-size:12px}
@media (max-width:840px){
  .hero{grid-template-columns:1fr}
}

/* Inline SVG responsiveness */
.visual .svg-wrap { display: grid; place-items: center; padding: 16px; }
.visual svg { max-width: 100%; width: 320px; height: auto; }
@media (max-width: 480px){
  .visual svg{ width: 240px; }
}

/* Header logo tweaks */
.logo { background: none !important; box-shadow: none !important; padding: 0; }
.logo svg { display: block; height: 40px; width: auto; }
@media (max-width: 520px){ .logo svg { height: 32px; } }

/* Centered hero */
.hero { grid-template-columns: 1fr !important; text-align: center; }
.hero h1 { font-size: clamp(36px,5.5vw,64px) !important; }

/* Hero logo sizing */
.hero svg { max-width: 400px; height: auto; margin-bottom: 20px; }
@media (max-width: 520px){ .hero svg { max-width: 280px; } }

.field { display:flex; flex-direction:column; gap:6px; }

.field input, .field textarea, .field select {
  width: 100%;
  max-width: 100%;
  padding:10px 12px;
  border:1px solid #e7e3dd;
  border-radius:10px;
  font:inherit;
}

.field input:focus, .field textarea:focus, .field select:focus { outline:2px solid var(--accent); outline-offset:2px; }

/* Stack two-column sections on narrow screens */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}


/* Navigation Bar Settings */

/*
.navbar {
  background-color: var(--bg);
  color: #fff;
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--bg);
}

.navbar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.navbar-list li {
  display: inline-block;
}


.nav-link {
  color: #7d4011;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
  padding-bottom: 2px;
}

*/


/* Responsive nav: stack links on small screens */
@media (max-width: 600px) {
  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .navbar-list {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .navbar-list li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
  }
}


/* Brand row: icon + name */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff; /* assuming a dark/nav background */
}

/* The small mark container */
.nav-mark {
  display: inline-grid;
  place-items: center;
  /* tweak the visual size of the mark here */
  width: 50px; 
  height: 50px;
}

/* Make the SVG scale crisply and remove inline-gap */
.nav-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* If you had a previous .nav-logo chip, make sure it doesn't apply anymore */
.nav-logo { display: none; }

/* Layout the bar */
.navbar {
  background-color: var(--bg);
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Prod-safe shadow (shows on all backgrounds) */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar-container {
  display: flex;
  align-items: center;       /* vertically centers logo + text + menu */
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;         /* optional container width */
  margin: 0 auto;
  padding: 12px 16px;
}


/* Brand: icon left, text right */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  /* color: inherit;  ensure it inherits nav color */
}



/* Brand text */
.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: .02em;
  /* color: inherit; */
}

/* Menu list aligned to the right */
.navbar-list {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  /* color: inherit; */
  font-weight: 500;
  line-height: 1;
  padding: 6px 2px; /* small hit area without shifting layout */
}

/* Optional: improve focus visibility */
.nav-link:focus,
.nav-brand:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

/* Force nav link color to espresso across environments */
.navbar .nav-link {
  color: var(--espresso) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--accent-deep) !important;
  text-decoration: none;
}


footer {
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.socials {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link svg {
  width: 36px;
  height: 36px;
  display: block;
  transition: transform 0.2s ease-in-out;
}

.social-link:hover svg {
  transform: translateY(-3px) scale(1.05);
}

.about-container {
  display: flex;
  align-items: center; /* vertically center text and image */
  justify-content: space-between; /* optional spacing */
  gap: 2rem; /* space between text and image */
  border: 12px;
  border-color: var(--espresso);
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h1 {
  font-size: clamp(24px, 3vw, 32px);
}

.about-image {
  flex: 1; /* image takes up half */
  text-align: center; /* centers the image */
}

.about-image img {
  width: 280px;          /* control size */
  height: 280px;         /* keep equal height and width */
  object-fit: cover;     /* crop and center the image */
  border-radius: 50%;    /* makes it perfectly round */
  border: 4px solid var(--espresso); /* optional accent border */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* modern drop shadow */
  display: block;
  margin: 0 auto;        /* centers in column */
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}

/* Center media inside stacked two-col sections on small screens */
@media (max-width: 768px) {
  .two-col img,
  .two-col .media,
  .two-col .about-image {
    margin-left: auto;
    margin-right: auto;
  }
}