/* =====================
   CSS Reset & Base
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0d0d0d;
  --color-text: #fff7e7;
  --color-accent: #f0ede6;
  --nav-font-size: clamp(0.75rem, 1.6vw, 0.95rem);
  --nav-letter-spacing: 0.18em;
  --transition-speed: 0.3s;
  --orbit-r: clamp(200px, 36vmin, 380px);
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}


/* =====================
   Hero Layout
   ===================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}


/* =====================
   Orbit wrapper
   ===================== */
.orbit-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--orbit-r) * 2 + 10rem);
  height: calc(var(--orbit-r) * 2 + 10rem);
}

.orbit-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(240, 237, 230, 0.35);
  width: calc(var(--orbit-r) * 2);
  height: calc(var(--orbit-r) * 2);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.orbit-wrap.panel-open::before {
  opacity: 0;
}

.orbit-wrap.panel-open .logo-wrap {
  opacity: 0;
  transition: opacity 0.3s ease;
}


/* =====================
   Logo
   ===================== */
.logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.logo {
  width: auto;
  height: clamp(120px, 30vh, 340px);
  max-width: 30vw;
  object-fit: contain;
  display: block;
}

#logoHome {
  cursor: pointer;
}


/* =====================
   Nav Links — orbiting (index page)
   ===================== */
.nav-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform:
    rotate(var(--angle))
    translateX(var(--orbit-r))
    rotate(calc(-1 * var(--angle)))
    translate(-50%, -50%);
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--nav-font-size);
  letter-spacing: var(--nav-letter-spacing);
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
  z-index: 2;
  transition:
    opacity var(--transition-speed) ease,
    letter-spacing var(--transition-speed) ease,
    font-size var(--transition-speed) ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  letter-spacing: 0.26em;
  font-size: calc(var(--nav-font-size) * 1.2);
  outline: none;
}

/* =====================
   Feature node — orbiting button (features page)
   ===================== */
.feature-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform:
    rotate(var(--angle))
    translateX(var(--orbit-r))
    rotate(calc(-1 * var(--angle)))
    translate(-50%, -50%);
  z-index: 2;
  transition: opacity 0.3s ease, scale 0.3s ease;
}

.feature-node.hidden {
  opacity: 0;
  scale: 0.8;
  pointer-events: none;
}

.feature-btn {
  background: none;
  border: none;
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: var(--nav-font-size);
  letter-spacing: var(--nav-letter-spacing);
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  padding: 0.6em 1em;
  margin: -0.6em -1em;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition:
    opacity var(--transition-speed) ease,
    letter-spacing var(--transition-speed) ease,
    font-size var(--transition-speed) ease;
}

.feature-btn::after {
  content: '+';
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0;
}

.feature-btn:hover,
.feature-btn:focus-visible {
  letter-spacing: 0.22em;
  font-size: calc(var(--nav-font-size) * 1.08);
  outline: none;
}

/* =====================
   Feature expanded panel
   ===================== */
.feature-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 28vw, 340px);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  scale: 0.92;
  transition:
    opacity 0.35s ease,
    scale 0.35s ease;
}

.feature-panel.visible {
  opacity: 1;
  scale: 1;
  pointer-events: auto;
}

.panel-title {
  font-size: clamp(0.65rem, 1.3vw, 0.8rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.7em;
  text-align: left;
}

.panel-body {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  line-height: 1.75;
  font-style: italic;
  text-align: left;
  list-style: disc;
  padding-left: 1.1em;
}

.panel-close {
  display: inline-block;
  margin-top: 1.2em;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

/* =====================
   Info Nav
   ===================== */
.info-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-left: 1.5rem;
  padding: 0.5rem 2.5rem 0.5rem 3.5rem;
  background: linear-gradient(to bottom, rgba(13,13,13,1) 0%, rgba(13,13,13,0.8) 60%, rgba(13,13,13,0) 100%);
}

.info-nav-left,
.info-nav-right {
  display: flex;
  gap: 2rem;
}

.info-nav-right {
  justify-content: flex-start;
}

.info-nav-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: clamp(0.65rem, 1.2vw, 0.82rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.info-nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex: o o auto;
  width: auto;
}

.nav-logo-img {
  height: clamp(20px, 8vh, 35px);
  width: auto;
  transition: transform 0.4s ease;
}

/* =====================
   Info / Gallery / Order main layout
   ===================== */
.info-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
}

.accordion-wrap {
  width: 100%;
  max-width: 560px;
}


/* =====================
   Accordion
   ===================== */
.accordion-item {
  border-top: 1px solid rgba(240, 237, 230, 0.5);
}

.accordion-item:last-child {
  border-bottom: 1px solid rgba(240, 237, 230, 0.5);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 0;
  cursor: pointer;
  text-align: center;
  gap: 0.4rem;
}

.accordion-title {
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.accordion-icon {
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.35s ease, opacity 0.3s ease;
  line-height: 1;
}

.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.accordion-panel.open {
  max-height: 1000px;
  padding-bottom: 1.4rem;
}

.accordion-panel p {
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  line-height: 1.85;
  font-style: italic;
}

.info-email {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* =====================
   Hamburger — mobile only
   ===================== */
.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}


/* =====================
   Gallery Main
   ===================== */
.gallery-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem 4rem;
}

.gallery-heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-desc {
  font-size: clamp(0.75rem, 1.4vw, 0.88rem);
  line-height: 1.85;
  font-style: italic;
  text-align: center;
  margin-bottom: 1.4rem;
}


/* =====================
   Photo strip
   ===================== */
.photo-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.photo-thumb {
  display: none;
  width: clamp(160px, 40%, 260px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-thumb.active {
  display: block;
}

.photo-thumb:hover {
  transform: scale(1.02);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strip-arrow {
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 0.5rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* =====================
   Lightbox
   ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* =====================
   Order Main
   ===================== */
.order-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8rem 2rem 5rem;
}

.order-heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

.order-form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-label {
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.form-hint {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-style: italic;
  font-family: 'Georgia', 'Times New Roman', serif;
  margin-top: -0.3rem;
}

.form-input {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(240, 237, 230, 0.2);
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.88rem;
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input::placeholder {
  font-style: italic;
}

.form-input:focus {
  border-bottom-color: rgba(240, 237, 230, 0.7);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.7;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  margin-top: 0.3rem;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  user-select: none;
}

.check-label input[type="checkbox"] {
  display: none;
}

.check-box {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(240, 237, 230, 0.35);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.check-label input[type="checkbox"]:checked + .check-box {
  border-color: var(--color-text);
}

.check-label input[type="checkbox"]:checked + .check-box::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-text);
}

.order-note {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Georgia', 'Times New Roman', serif;
  text-align: center;
  line-height: 1.8;
  border-top: 1px solid rgba(240, 237, 230, 0.1);
  padding-top: 1.5rem;
}

.form-submit {
  background: none;
  border: 1px solid rgba(240, 237, 230, 0.8);
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9em 2.5em;
  cursor: pointer;
  align-self: center;
  opacity: 1;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.form-submit:hover {
  border-color: rgba(240, 237, 230, 0.8);
}

.order-success {
  display: none;
  text-align: center;
  margin-top: 2rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: italic;
  line-height: 2.2;
}

.order-success.visible {
  display: block;
}


/* =====================
   Mobile
   ===================== */
@media (max-width: 600px) {
  body {
    overflow: auto;
  }

  :root {
    --orbit-r: clamp(120px, 30vw, 170px);
    --nav-font-size: 0.65rem;
  }

  .hero {
    height: 100dvh;
  }

  .orbit-wrap {
    width: calc(var(--orbit-r) * 2 + 6rem);
    height: calc(var(--orbit-r) * 2 + 6rem);
  }

  .logo {
    height: clamp(80px, 20vh, 160px);
    max-width: 35vw;
  }

  .feature-panel {
    width: clamp(140px, 55vw, 220px);
  }

  .panel-body {
    font-size: 0.88rem;
  }

  .info-nav {
    padding: 0.5rem 1.2rem;
    justify-content: center;
    gap: 1rem;
  }

  .info-nav-logo {
    margin-left: 2.6rem;
  }

  .info-nav-left,
  .info-nav-right {
    display: none;
  }

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

  .hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
  }

  .gallery-main {
    padding: 7rem 1.2rem 3rem;
  }

  .photo-thumb {
    width: clamp(100px, 40vw, 160px);
  }

  .order-main {
    padding: 7rem 1.4rem 4rem;
  }

  .checkbox-group {
    gap: 0.8rem 1.2rem;
  }
}

.logo {
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.08);
}

.page-scrollable {
  overflow: auto;
}

/* nav logo expand */
.nav-logo-img:hover {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}

@media (min-width: 601px) {
  .features-hero {
    padding-bottom: 40px;
    height: auto;
  }
}

/* =====================
   Process Page
   ===================== */
.process-main {
  min-height: 100vh;
  padding: 8rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.6rem;
}

.process-subheading {
  font-size: clamp(0.7rem, 1.3vw, 0.82rem);
  letter-spacing: 0.16em;
  font-style: italic;
  text-align: center;
  opacity: 0.5;
  margin-bottom: 5rem;
}

.timeline {
  position: relative;
  width: 100%;
  max-width: 780px;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(240, 237, 230, 0.1);
  transform: translateX(-50%);
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0%;
  background: rgba(240, 237, 230, 0.45);
  transition: height 0.05s linear;
}

.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 4.5rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(odd) {
  flex-direction: row-reverse;
}

.step:nth-child(odd) .step-content {
  text-align: right;
  align-items: flex-end;
  padding-right: 3rem;
  padding-left: 0;
}

.step:nth-child(even) .step-content {
  padding-left: 3rem;
}

.step-dot {
  position: absolute;
  left: 50%;
  top: 0.3rem;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(240, 237, 230, 0.5);
  background: #0d0d0d;
  z-index: 2;
  transition: border-color 0.4s ease, background 0.4s ease;
  flex-shrink: 0;
}

.step.visible .step-dot {
  border-color: rgba(240, 237, 230, 0.9);
}

.step-content {
  width: calc(50% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-number {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  color: rgba(240, 237, 230, 0.04);
  line-height: 1;
  margin-bottom: -1rem;
  letter-spacing: -0.02em;
  user-select: none;
}

.step-icon {
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.step-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(0.75rem, 1.6vw, 0.92rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.step-title-optional {
  opacity: 0.45;
  font-size: 0.8em;
}

.step-body {
  font-size: clamp(0.72rem, 1.3vw, 0.82rem);
  line-height: 1.85;
  font-style: italic;
  opacity: 0.6;
}

.step-note {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.4;
  border-top: 1px solid rgba(240, 237, 230, 0.2);
  padding-top: 0.5rem;
}

.step.step-launch .step-dot {
  background: rgba(240, 237, 230, 0.15);
}

.step.step-support .step-title {
  opacity: 0.5;
}

.process-cta {
  margin-top: 2rem;
  text-align: center;
}

.process-cta a {
  display: inline-block;
  color: var(--color-text);
  text-decoration: none;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(240, 237, 230, 0.4);
  padding: 0.9em 2.5em;
  transition: border-color 0.3s ease;
}

.process-cta a:hover {
  border-color: rgba(240, 237, 230, 0.9);
}

@media (max-width: 600px) {
  .process-main {
    padding: 7rem 1.2rem 4rem;
  }

  .timeline-track {
    left: 1.2rem;
  }

  .step,
  .step:nth-child(odd) {
    flex-direction: column;
    padding-left: 3rem;
  }

  .step-content,
  .step:nth-child(odd) .step-content {
    width: 100%;
    text-align: left;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

  .step-dot {
    left: 1.2rem;
  }

  .step-number {
    font-size: 3rem;
  }

  .process-subheading {
    margin-bottom: 3rem;
  }
}

.contact-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-pills .pill {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(255,247,231,0.35);
  padding: 0.7em 1.6em;
  text-decoration: none;
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  letter-spacing: 0.18em;
  font-style: italic;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-pills .pill:hover {
  border-color: var(--color-text);
  background: rgba(255,247,231,0.06);
}

.contact-pills .pill svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--color-text);
  text-decoration: none;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(0.68rem, 1.2vw, 0.8rem);
  letter-spacing: 0.18em;
  font-style: italic;
  border: 1px solid rgba(255,247,231,0.35);
  padding: 0.7em 1.6em;
  transition: border-color 0.3s ease, background 0.3s ease;
  margin-bottom: 0.8rem;
  white-space: normal;
  word-break: break-all;
}

.contact-link svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.contact-link:hover {
  border-color: var(--color-text);
  background: rgba(255,247,231,0.06);
}

.contact-form-link {
  display: block;
  text-align: center;
  margin-top: 0.4rem;
  color: var(--color-text);
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-style: italic;
  text-decoration: none;
}

.contact-form-link a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.contact-form-link a:hover {
  color: #7eb8f7;
}
