@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors (match reference site) */
  --primary-color: #d4816f;
  --primary-dark: #b86856;
  --primary-light: #e5a294;
  --secondary-color: #f4e4d7;
  --accent-color: #8b4513;

  --text-dark: #2c2c2c;
  --text-light: #666666;
  --text-muted: #999999;
  --white: #ffffff;
  --background: #fefefe;
  --background-alt: #f9f6f3;
  --border-color: #e8e8e8;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --border-radius: 12px;
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);

  /* Backward-compatible aliases for existing sections */
  --bg: var(--background);
  --text: var(--text-dark);
  --muted: var(--text-light);
  /* 页脚专用：略淡于正文，易读且不抢主内容 */
  --footer-text: #6a6f76;
  --footer-link: #585d64;
  --footer-sep-color: #8b9098;
  --accent: var(--primary-color);
  --border: var(--border-color);
  --max-width: var(--container-width);
  --radius: var(--border-radius);
}
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
    background-color: var(--bg);
    color: var(--text);
  line-height: 1.7;
  }
  
  a {
  color: inherit;
    text-decoration: none;
  transition: var(--transition);
  }
  
  a:hover {
  text-decoration: none;
  }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
  
  .container {
  max-width: var(--max-width);
  padding: 0 2rem;
  margin: 0 auto;
  }
  
  /* 头部导航 */
  .site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
  z-index: 1000;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  padding: 1rem 0;
  }

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
  
  .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  }

.logo:hover {
  text-decoration: none;
}
  
/* Logo image: no border/outline box around graphic */
.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
  border: 0;
  outline: 0;
  box-shadow: none;
  background: transparent;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

a.logo {
  -webkit-tap-highlight-color: transparent;
}

a.logo:focus {
  outline: none;
}

a.logo:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
  border-radius: 6px;
}

/* Gradient text like reference site logo-text */
.logo-text {
  /* 渐变颜色向 logo 深褐色靠拢一点 */
  background: linear-gradient(135deg, #8b3b24, #c97a5b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

  .main-nav a {
  margin-left: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  }
  
  .main-nav a.active,
  .main-nav a:hover {
  /* 选中/悬停时文字颜色略偏向 logo 的棕色 */
  color: #8b3b24;
  background-color: var(--secondary-color);
  }

/* 顶部社媒图标（参考 shortstackkitchen 布局，简化为圆形图标） */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* 后台分别开关：隐藏对应社媒图标（不删 DOM） */
body.nav-hide-social-yt .nav-social .social-icon.yt,
body.nav-hide-social-pin .nav-social .social-icon.pin,
body.nav-hide-social-insta .nav-social .social-icon.insta {
  display: none !important;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: #ffece4;
  border: 1px solid rgba(212, 129, 111, 0.25);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}

.social-icon.yt svg polygon {
  fill: currentColor;
}

.social-icon.insta svg rect,
.social-icon.pin svg circle,
.social-icon.mail svg rect {
  /* 更圆润一些 */
  stroke-linejoin: round;
}

.social-icon.insta {
  /* 可以稍微偏粉一点 */
}

.social-icon.pin {
  /* 留空，保持统一配色，后期可细分 */
}

.social-icon.yt {
  /* YouTube 可稍微偏红，将来可单独调整 */
}

.social-icon.mail {
  /* 邮件图标保持同色系即可 */
}
  
/* 顶部标题区（导航与标语 / 首屏内容之间的留白） */
.hero {
  padding: 3.5rem 0 12px;
}

.hero-inner {
  text-align: center;
}

.hero-label {
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  background-color: #fff3ec;
  border-radius: 999px;
}

/* 首页主标题：手写签名感，居中、宽字距、略小字号、低透明度如钤印 */
.hero-tagline {
  margin: 0 auto;
  max-width: none;
  width: 100%;
  text-align: center;
  font-family: 'Great Vibes', 'La Belle Aurore', cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.72em;
  color: var(--primary-color);
  opacity: 0.6;
  font-synthesis: none;
}

.hero .hero-tagline {
  font-family: 'Great Vibes', 'La Belle Aurore', cursive;
  font-weight: 400;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .hero-tagline {
    letter-spacing: 0.48em;
    font-size: 17px;
    padding: 0 0.25rem;
    box-sizing: border-box;
  }
}

/* 分类页面 */
.category-hero {
  padding: 28px 0 8px;
}

.category-hero-text {
  max-width: 720px;
}

.gallery-hero-banner {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-hero-banner img {
  display: block;
  width: 100%;
  /* 压扁一些做横幅效果：高度固定，左右拉长 */
  height: 220px;
  object-fit: cover;
}

.category-section {
  padding: 16px 0 32px;
}

.gallery-page .container {
  /* Cake Gallery 页面内容两侧不留内边距，方便 1200px 匹配 6×200px */
  padding-left: 0;
  padding-right: 0;
}

.gallery-page .category-grid {
  display: grid;
  /* Cake Gallery：6 张图 + 5 个间隙，刚好占满 1200px */
  /* 6 × 190px + 5 × 12px = 1200px */
  grid-template-columns: repeat(6, 190px);
  justify-content: center;
  column-gap: 12px; /* 清晰的分隔，但整体宽度仍为 1200px */
  /* 行与行之间留更大的垂直间距 */
  row-gap: 22px;
}


.category-item figcaption {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* 去掉浏览器默认给 figure 的左右外边距，避免看起来空隙很大 */
.category-item {
  margin: 0;
}
.category-item img.thumb-image {
  cursor: pointer;
}

.subcategory-title {
  margin: 18px 0 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.gallery-page .subcategory-tabs {
  display: flex;
  flex-wrap: wrap;
  /* 再稍微拉大一点间距 */
  gap: 32px;
  /* 和第一行图片之间留更大的垂直间距 */
  margin: 14px 0 18px;
  /* 再向右 2 像素微调 */
  padding-left: 37px;
}

.subcategory-tab {
  padding: 0;
  border-radius: 0;
  font-size: 0.88rem;
  color: var(--text-light);
  border: none;
  background: transparent;
  position: relative;
}

.subcategory-tab.active,
.subcategory-tab:hover {
  color: var(--primary-color);
}

.subcategory-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background-color: transparent;
}

.subcategory-tab.active::after {
  background-color: var(--primary-color);
}

.subcategory-block {
  display: none;
}

.subcategory-block.is-active {
  display: block;
}

.subcategory-link {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.subcategory-link a {
  color: var(--primary-color);
}

/* Cake Gallery 顶部 5 个分类按钮 */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* 方块之间不留空隙，首尾刚好拼成一整条 */
  margin: 16px 0 8px;
  justify-content: space-between; /* 让整排大类按钮在横幅宽度内尽量铺满 */
}

.gallery-page .category-tabs {
  margin-top: 2rem;
}

.category-tab {
  flex: 1 1 0;              /* 每个按钮等宽分配整行空间 */
  padding: 10px 0;          /* 只做上下内边距，左右靠 flex 撑开 */
  border-radius: 0;         /* 去掉圆角，变成长方形块 */
  font-size: 0.95rem;
  /* 大图标使用标题字体，和小图标区分开 */
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;       /* 文字居中 */
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-left-width: 0;     /* 中间块只画右边框，避免加粗 */
  background-color: #ffffff;
}

.category-tab.active,
.category-tab:hover {
  border-color: var(--primary-color);
  background-color: #fff3ec;
  color: #8b3b24;
}

/* 第一块保留左边框，最后一块保留右边框 */
.category-tab:first-child,
.category-tabs .category-tab-wrap:first-child .category-tab {
  border-left-width: 1px;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}

.category-tab:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

/* Decorated Cakes 悬停下拉 */
.category-tab-wrap {
  flex: 1 1 0;
  position: relative;
}

.category-tab-wrap .category-tab {
  width: 100%;
  cursor: pointer;
}

.category-tab-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.category-tab-dropdown:hover .category-tab-dropdown-menu {
  display: block;
}

.category-tab-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.category-tab-dropdown-menu a:last-child {
  border-bottom: none;
}

.category-tab-dropdown-menu a:hover {
  background: #fff3ec;
  color: #8b3b24;
}

/* 只在 Cake Gallery 页面里，用按钮切换各分类区域显示 */
.gallery-page .category-section {
  display: none;
}

.gallery-page .category-section.is-active {
  display: block;
}
  
  /* 作品行公共样式 */
  .gallery-row {
    padding: 24px 0;
    border-top: 1px solid var(--border);
  }

  /* 首页：紧跟 hero 的第一条作品行去掉顶线（:first-of-type 会误匹配到 .hero 这个 section，之前规则无效） */
  .home-page .hero + .gallery-row {
    border-top: none;
  }

  /* 首页：裱花–翻糖、法式西点–糖霜饼干 之间不要顶线 */
  .home-page .gallery-row[data-category="decorated"] + .gallery-row,
  .home-page .gallery-row[data-category="french"] + .gallery-row {
    border-top: none;
  }

  /* 首页：人物介绍与法式西点区块之间不要顶线 */
  .home-page .about-strip + .gallery-row {
    border-top: none;
  }
  
  .row-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .row-header h2 {
    margin: 0;
    font-size: 1.2rem;
  }
  
  .view-all-link {
    font-size: 0.9rem;
  color: var(--primary-color);
  }

  .view-all-link:hover {
    text-decoration: underline;
  }

.row-footer {
  margin-top: 10px;
  text-align: right;
}
  
.home-thumb-grid {
  /* 首页：严格 4 列网格布局，和其他页面完全隔离 */
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 24px;
}

.home-thumb-item {
  margin: 0;
}

.home-thumb-item .thumb-image,
.category-item .thumb-image {
  cursor: pointer;
}

  .thumb-placeholder {
    width: 100%;
    padding-bottom: 70%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--background-alt), #f5f1ef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
  }

/* 首页缩略图实际图片样式 */
.thumb-image {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: cover;
  /* 竖向长方形：上下长、左右短 */
  aspect-ratio: 3 / 4;
}
  
  .home-thumb-item figcaption,
  .thumb-item figcaption {
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
  }
  
  /* 中间自我介绍条带：首页强制纯白底；占位图也偏白以免整块仍像米色 */
  .about-strip {
    padding: 32px 0;
  }

  .home-page .about-strip {
    background: #ffffff;
  }

  .home-page .about-strip .photo-placeholder {
    background: linear-gradient(145deg, #ffffff, #f3f1ee);
    border-color: #e6e2dd;
  }
  
  .about-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: center;
  }

  /* 首页自我介绍：两列同高（行高=较高的一列，通常等于圆形象高度），链接贴文字列底、与头像列底齐平 */
  .home-page .about-inner {
    align-items: stretch;
  }

  /* 左列也参与拉伸，否则部分浏览器下行高不对，右侧拿不到足够高度做 flex 推底 */
  .home-page .about-photo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 0;
  }

  .home-page .about-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
    /* 占满网格单元高度，才能把正文区 flex 撑开、把链接压到底行 */
    height: 100%;
    min-height: 100%;
    align-self: stretch;
  }

  /* 正文在「链接」上方的剩余高度里垂直居中，与左侧圆形头像视觉对齐 */
  .home-page .about-text-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-page .about-intro-copy p:last-child {
    margin-bottom: 0;
  }
  
  .photo-placeholder {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 999px;
    border: 1px solid var(--border);
  background: linear-gradient(135deg, #fdf6f3, #f3e5df);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
  }

  /* CMS 上传的自我介绍头像：与占位块同尺寸、圆形 */
  .home-page .about-photo-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid var(--border);
    display: block;
  }
  
  .about-text h2 {
    margin-top: 0;
    margin-bottom: 8px;
  }
  
  .about-text p {
    margin: 0 0 8px;
    color: var(--muted);
  }
  
  .about-text-more {
    margin-top: 12px;
    margin-bottom: 0;
    text-align: right;
  }

  .home-page .about-text-more {
    flex: 0 0 auto;
    flex-shrink: 0;
    margin-top: 0;
    padding-top: 12px;
    width: 100%;
    text-align: right;
    position: relative;
    z-index: 1;
  }
  
  /* 页脚：浅色背景与正文区分，左中右三栏 */
  .site-footer {
    border-top: 1px solid var(--border);
    background-color: var(--background-alt);
    padding: 24px 0 32px;
    margin-top: 24px;
    font-size: 0.85rem;
    color: var(--footer-text);
  }

  .site-footer a {
    color: var(--footer-link);
  }

  .site-footer a:hover {
    color: var(--primary-color);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }

  /* 页脚导航分两行：整块仍靠右；块内左对齐，第二行缩进使 About 落在 Cake 的 C 下方 */
  .footer-left {
    max-width: min(400px, 100%);
    justify-self: end;
    display: flex;
    justify-content: flex-end;
  }

  /* 2×2 网格：第 1 列宽由第一行「Home|」决定，第二行左留空占位格，About 与 Cake Gallery 同列 */
  .footer-nav-rows {
    display: inline-grid;
    grid-template-columns: auto auto;
    column-gap: 0.35em;
    row-gap: 6px;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
  }

  .footer-nav-top-cluster {
    display: contents;
  }

  .footer-dmain--bottom {
    display: flex;
    align-items: center;
    gap: 0.35em;
    flex-wrap: nowrap;
  }

  .footer-dpref {
    display: flex;
    align-items: center;
    gap: 0.35em;
    justify-content: flex-end;
  }

  .footer-dmain {
    display: flex;
    align-items: center;
    gap: 0.35em;
    flex-wrap: nowrap;
  }

  .footer-dpref--spacer {
    pointer-events: none;
    user-select: none;
  }

  /* 桌面：About 向左平移（小屏保持居中不位移） */
  @media (min-width: 769px) {
    .footer-nav-rows > .footer-dmain--bottom {
      transform: translateX(-0.65em);
    }
  }

  .footer-right {
    max-width: 300px;
    justify-self: start;
    text-align: right;
  }

  .footer-left p {
    margin: 2px 0;
  }

  .footer-center {
    text-align: center;
  }

  .footer-logo {
    display: inline-block;
    color: inherit;
    text-decoration: none;
  }

  .footer-logo:hover {
    text-decoration: none;
  }

  .footer-logo-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    display: block;
  }

  .footer-line {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35em;
  }

  .footer-right .footer-line {
    justify-content: flex-start;
  }

  .site-footer .footer-sep {
    color: var(--footer-sep-color);
    user-select: none;
  }

  .footer-right .footer-line-indent {
    margin-left: 3.15em;
    margin-top: 4px;
  }
  
  /* 响应式：小屏幕优化 */
  @media (max-width: 768px) {
    .header-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  
  .header-right {
    width: 100%;
    justify-content: space-between;
  }

    .main-nav a {
    padding: 0.8rem 1rem;
    }
  
    .about-inner {
      grid-template-columns: 1fr;
    }

    .footer-inner {
      grid-template-columns: 1fr;
      text-align: center;
      justify-items: center;
      align-items: center;
      gap: 1.25rem;
    }

    .footer-left {
      order: 1;
      width: 100%;
      max-width: 100%;
      justify-self: stretch;
      justify-content: center;
    }

    .footer-center {
      order: 0;
      width: 100%;
      justify-self: center;
    }

    .footer-nav-rows {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 0.5rem;
    }

    .footer-nav-top-cluster {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      align-content: center;
      gap: 0.35em;
      row-gap: 0.25rem;
      max-width: 100%;
    }

    .footer-dpref--spacer {
      display: none;
    }

    .footer-dmain--bottom {
      justify-content: center;
      transform: none;
    }

    .footer-nav-rows .footer-dpref,
    .footer-nav-rows .footer-dmain {
      justify-content: center;
    }

    .footer-right {
      order: 2;
      width: 100%;
      max-width: 100%;
      justify-self: stretch;
      text-align: center;
    }

    .footer-right .footer-line {
      justify-content: center;
      text-align: center;
    }

    .footer-right .footer-line-indent {
      margin-left: 0;
      margin-right: 0;
    }
  }

/* 图片放大预览（仅在 Cake Gallery 使用） */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1300;
}

.lightbox-overlay.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.lightbox-content {
  position: absolute;
  inset: 40px 5% 40px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: #ffffff;
}

.lightbox-close {
  display: none; /* 目前不需要 X 按钮，隐藏 */
}

.lightbox-close:hover {
  background: #ffffff;
}

.lightbox-open {
  overflow: hidden;
}

/* Legal pages (Privacy Policy, Terms of Use) */
.legal-content {
  padding: 48px 2rem 64px;
  max-width: 720px;
  margin: 0 auto;
}
.legal-content h1 {
  margin-bottom: 0.25em;
}
.legal-content .legal-updated {
  color: var(--muted);
  margin-bottom: 2em;
}
.legal-content h2 {
  font-size: 1.1rem;
  margin-top: 1.75em;
  margin-bottom: 0.5em;
}
.legal-content p {
  margin-bottom: 1em;
  line-height: 1.6;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--accent-dark, #8b5a2b);
}

/* Contact form */
.contact-section {
  padding: 48px 2rem 64px;
  max-width: 560px;
  margin: 0 auto;
}
.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form .form-group {
  margin-bottom: 1.25rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}
.contact-form .required {
  color: inherit;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-sizing: border-box;
}
.contact-form select {
  cursor: pointer;
  appearance: auto;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.contact-submit:hover {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

/* About page */
.about-hero {
  background: #FAEFEA;
  padding: 56px 0 72px;
}
.about-hero .container {
  max-width: var(--max-width);
  padding: 0 2rem;
}
.about-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
}
.about-body {
  padding: 40px 2rem 72px;
}
.about-story {
  max-width: 720px;
  margin: 0 auto;
}
.about-story h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0 0 1.25rem;
  color: var(--text-dark);
}
.about-story p {
  margin: 0 0 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.about-story p:last-child {
  margin-bottom: 0;
}
.about-story h3,
.about-story h4 {
  text-indent: 0;
  margin: 1.25rem 0 0.5rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}
.about-story ul,
.about-story ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  text-indent: 0;
  color: var(--text-light);
}
.about-story li {
  text-indent: 0;
  margin-bottom: 0.35rem;
}