
:root {
  --color-oil: #2D1E17;
  --color-judge-gray: #523F31;
  --color-roman-coffee: #796254;
  --color-pale-oyster: #F3E7D9;
  --color-ink: #16110F;
  --accent-gold: #E4C9A3;
  --accent-soft: #D3B79A;
  --border-soft: rgba(228,201,163,0.35);

  --text-main: #241713;
  --text-light: #FBF6F0;
  --text-muted: #7F6757;

  --shadow-soft: 0 18px 40px rgba(0,0,0,0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --page-bg: #F9F3EC;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: var(--page-bg);
  color: var(--text-main);
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(249,243,236,0.96), rgba(249,243,236,0.9));
  border-bottom: 1px solid rgba(120,89,74,0.12);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at 10% 0%, #FDF7EF, #C9AA8A);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-oil);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Times New Roman", "Georgia", serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.9rem;
}

.nav-links a {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.nav-links a.active {
  color: var(--color-oil);
  font-weight: 600;
}

.nav-cta {
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, #FDF6EB, #D1B598);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-oil);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.nav-cta:hover {
  filter: brightness(1.03);
}

/* Mobile nav */

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.2rem;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-oil);
  margin: 4px 0;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 60px 1.2rem auto 1.2rem;
    background: var(--page-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 1.1rem 1.1rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.2s ease-out;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .menu-toggle {
    display: block;
  }
}

/* Layout */

.main {
  flex: 1;
}

.section {
  padding: 3.5rem 1.5rem;
}

.section-narrow {
  max-width: 1120px;
  margin: 0 auto;
}

/* Hero boutique layout */

.hero {
  padding-top: 3.2rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: radial-gradient(circle at top left, #FDF5EB, #E0C6AA);
  border-radius: 40px;
  padding: 2.7rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 120% -10%, rgba(255,255,255,0.7), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 2.4rem;
  line-height: 1.1;
  margin: 0 0 0.9rem;
  letter-spacing: 0.03em;
}

.hero-tagline {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5F493A;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-oil);
  color: var(--text-light);
  border-color: var(--color-oil);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--color-oil);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-meta-pill {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(105,80,61,0.24);
  background: rgba(255,255,255,0.55);
}

.hero-image-shell {
  position: relative;
  z-index: 2;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 22px 44px rgba(0,0,0,0.25);
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service ticker */

.service-ticker {
  margin: 2.2rem auto 0;
  max-width: 1120px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #FDF7EF;
}

.service-track {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.55rem 1.6rem;
  animation: ticker-scroll 26s linear infinite;
  white-space: nowrap;
}

.service-pill {
  padding: 0.32rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(136,102,73,0.3);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6E4E37;
  background: rgba(255,255,255,0.7);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Boutique "shop" grid */

.section-heading-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.section-heading-title {
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 1.8rem;
  margin-top: 0.4rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.shop-card {
  border-radius: var(--radius-xl);
  padding: 1.4rem 1.3rem;
  background: #FDF7EF;
  border: 1px solid rgba(138,103,74,0.25);
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
}

.shop-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.shop-title {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.shop-desc {
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: #6A5244;
}

.shop-link {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-oil);
}

/* Founder's section */

.founder-section {
  margin-top: 3.3rem;
  border-radius: 36px;
  background: linear-gradient(to right, #2D1E17, #523F31);
  padding: 2.6rem 2.4rem;
  color: var(--text-light);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2.4rem;
}

.founder-copy .section-heading-eyebrow {
  color: rgba(255,245,232,0.75);
}

.founder-copy .section-heading-title {
  color: #FFF5E8;
}

.founder-copy p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,245,235,0.92);
}

.founder-image {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 22px 46px rgba(0,0,0,0.35);
}

/* Generic page hero */

.page-hero {
  padding: 3.2rem 1.5rem 2.5rem;
}

.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 2.2rem 2rem;
  background: linear-gradient(to right, #2D1E17, #523F31);
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
}

.page-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(245,228,208,0.75);
}

.page-hero-title {
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 1.9rem;
  margin-top: 0.5rem;
}

.page-hero-text {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 34rem;
  color: rgba(255,245,235,0.9);
}

/* Content blocks */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.1rem;
  margin-top: 2.2rem;
}

.card {
  border-radius: var(--radius-xl);
  padding: 1.7rem 1.6rem;
  background: #FDF7EF;
  border: 1px solid rgba(140,108,80,0.25);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #654C3E;
}

.card-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #654C3E;
}

.card-list li + li {
  margin-top: 0.25rem;
}

.card-footer-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #7A6254;
}

/* Team grid */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.8rem;
}

.team-card {
  border-radius: 26px;
  background: #FDF7EF;
  border: 1px solid rgba(124,94,67,0.28);
  box-shadow: 0 16px 30px rgba(0,0,0,0.14);
  overflow: hidden;
}

.team-photo {
  height: 230px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-body {
  padding: 1.1rem 1.3rem 1.3rem;
}

.team-name {
  font-weight: 600;
  font-size: 1.02rem;
}

.team-role {
  margin-top: 0.1rem;
  font-size: 0.86rem;
  color: #745A4A;
}

/* Forms */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.1rem;
  margin-top: 2.3rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.form-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(118,90,63,0.38);
  background: rgba(254,249,241,0.9);
  font-size: 0.9rem;
  font-family: inherit;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Contact cards */

.contact-card {
  border-radius: 24px;
  padding: 1.6rem 1.5rem;
  background: #FDF7EF;
  border: 1px solid rgba(133,101,76,0.26);
  font-size: 0.9rem;
  color: #654C3E;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(145,110,82,0.22);
  padding: 1.4rem 1.5rem 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .founder-section {
    grid-template-columns: minmax(0, 1fr);
  }
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 1.9rem 1.6rem 2.3rem;
    border-radius: 30px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section {
    padding: 3rem 1.1rem;
  }
  .shop-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
